@font-face{
    /* font-family: Vazir; */
    src: url('fonts/Vazir.woff2') format('woff2');
    font-weight: normal;
}
:root{
    --jf-primary-color: #FF8552;
    --jf-primary-color-hover: #fa682a;
    --jf-secondary-color: #297373;
    --jf-secondary-color-hover: #256666;
    --jf-success: #02a533;
    --jf-error: #f00;
    --jf-white: #f4f4f4;
    --jf-white-hover: #fff;
    --jf-black: #555;
    --jf-black-hover: #333;
    --jf-bg-one: #F4F4FC;
    --jf-bg-two: #E9ECF5;
    --jf-border: 2px solid #ccc;
    --jf-border-focus: 1px solid #555;
    --jf-border-radius: 10px;
}
*{
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* font-family: Vazir; */
}

/* ! basic tags */
body, html{
    direction: rtl;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: 'Noto Nastaliq Urdu Draft', serif;
	font-size: 14px
}
body{
    background: var(--jf-bg-one);
    color: #000000;
}
a, a:active, a:focus, a:visited{
    text-decoration: none;
    color: #000000;
}
ul li{
    list-style: none;
}
a, span{
    display: inline-block;
}
hr{
    border: none;
    border-bottom: 1px solid #ddd;
    margin-top: 3px;
    margin-bottom: 5px;
}

/* ! right-side-block */
.right-side-block{
    width: 250px;
    background-color: #E9ECF5;
    height: 100%;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 212;
    top: 0;
    overflow-y: auto;
    transition: all 200ms ease;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}
.right-side-block.is-active{
    right: -170px;
    transition: all 200ms ease;
}
.right-side-block span.bars{
    position: absolute;
    left: 25px;
    top: 15px;
    display: none;
}
.right-side-block ul li{
    position: relative;
}
.right-side-block ul li a{
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    margin: 5px 0;
    padding: 2px 50px;
    white-space: nowrap;
}
.right-side-block ul li.is-active {
    /* background-color: var(--jf-white-hover); */
    background-color: #ffffff;
    border-left: 5px solid #469020;
}
.right-side-block ul li:hover{
    background-color: var(--jf-white-hover);
    transition: background-color 200ms ease;
}
.right-side-block.is-active .ic{
    left: 27px;
    right: unset;
}
.right-side-block.is-active ul li.is-active{
    background-color: transparent;
    border: none;
}
.copy-right{
    text-align: center;
    margin-top: auto;
    padding-top: 10px;
    font-size: 13px;
}
.hidden,.right-side-block.is-active .copy-right{
    display: none;
}
/* ! profile */
.profile-block{
    width: 100px;
    height: 100px;
    cursor: pointer;
    margin: 15px auto 50px;
    border-radius: 50%;
}
.profile__name{
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}
.profile__skill{
    font-size: 13px;
    display: block;
    margin-right: auto;
    width: 100%;
    text-align: center;
}
.profile__img{
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 4px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.profile__img img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.right-side-block.is-active .profile-block{
    width: 50px;
    height: 50px;
    position: relative;
    left: -87px;
    margin-bottom: 0px;
    border-radius: 5px;
}
.right-side-block.is-active .profile__img img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.right-side-block.is-active .profile-block .box__camera,
.right-side-block.is-active .profile__name,
.right-side-block.is-active .profile__skill{
    display: none
}
/* ! content block */
.left-side-block{
    margin-right: 250px;
    transition: all 200ms ease;
}
.left-side-block.is-active{
    margin-right: 80px;
    transition: all 200ms ease;
}
/* ! header */
.header{
    border-bottom: var(--jf-border);
}
.header-block{
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    /* align-items: center; */
}
.header__right{
    display: flex;
    margin-left: auto;
    align-items: center;
    width: auto;
}
.bars{
    cursor: pointer;
    user-select: none;
}
.menu-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    border: var(--jf-border);
    border-radius: 5px;
    width: 35px;
    height: 35px;
}
.logo{
    padding: 2px 10px;
    border-radius: 10px;
    margin-right: 10px;
    font-size: 20px;
}
.header__left{
    display: flex;
    width: auto;
    align-items: center;
}
.header__search{
    position: relative;
    width: auto;
    align-items: center;
}
.header__search input{
    border: var(--jf-border);
    border-radius: var(--jf-border-radius);
    padding: 3px 35px 3px 10px;
    background-color: transparent;
    width: 100%;
    display: block;
}
.header__search>button{
    position: absolute;
    right: 5px;
    top: 4px;
    background-color: transparent;
}
.notification{
    margin-left: 15px;
    position: relative;
}
.notif__icon::before{
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--jf-primary-color);
    position: absolute;
    border: 2px solid var(--jf-bg-one);
    top: 0;
    right: -2px;
}
/* ! main */
.main-content{
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

/* ! ----- index.html ----- */
/* ! banner type one */
.banner-type-one{
    padding: 25px 15px;
    position: relative;
    background-color: var(--jf-secondary-color);
    border-radius: 10px;
}
.banner-type-one *{
    color: var(--jf-white);
}
.banner-type-one__button{
    padding: 5px 15px;
    border-radius: 5px;
    margin-top: 10px;
}
.banner-type-one__button:hover{
    color: var(--jf-white-hover);
}
.banner-type-one__button--accept{
    background-color: var(--jf-primary-color);
    border: 1px solid var(--jf-primary-color);
}
.banner-type-one__button--reject{
    background-color: transparent;
    border: 1px solid var(--jf-white);
}
/* ! top cards */
.top-card{
    margin: 0;
}
.top-card-number{
    width: 100%;
    font-size: 28px;
    font-weight: bold;
    border-radius: 5px;
    background-color: var(--jf-primary-color);
    color: var(--jf-white);
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-card-number>p{
    text-align: center;
}
/* ! banner type two */
.banner-type-two{
    width: 100%;
    height: 200px;
    position: relative;
    background: url('../img/company.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--jf-border-radius);
}
.banner-type-two h2{
    font-size: 28px;
    color: var(--jf-white);
    text-align: center;
    display: block;
    background-color: var(--jf-black);
    padding: 5px 20px;
    border-radius: 10px;
}
.banner-type-two button{
    padding: 5px 10px;
    background-color: var(--jf-primary-color);
    color: var(--jf-white);
    margin-top: 20px;
    border-radius: 10px;
}

.text-warning {
	color: var(--jf-primary-color) !important;
}

.text-danger {
	color: #f00;
}

.alert.alert-info {

  border: 1px solid #85c5e5;
  
  padding: 5px;

  background: #afd9ee;

  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #afd9ee), color-stop(1, #d9edf7));

  background: -ms-linear-gradient(bottom, #afd9ee, #d9edf7);

  background: -moz-linear-gradient(center bottom, #afd9ee 0%, #d9edf7 100%);

  background: -o-linear-gradient(bottom, #afd9ee, #d9edf7);

  filter: progid:dximagetransform.microsoft.gradient(startColorStr='#e3e3e3', EndColorStr='#ffffff');

  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#d9edf7',EndColorStr='#afd9ee')";

}

.alert.alert-success {

  border: 1px solid #a3d48e;
  
  padding: 5px;
  
  background: #c1e2b3;

  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #c1e2b3), color-stop(1, #dff0d8));

  background: -ms-linear-gradient(bottom, #c1e2b3, #dff0d8);

  background: -moz-linear-gradient(center bottom, #c1e2b3 0%, #dff0d8 100%);

  background: -o-linear-gradient(bottom, #c1e2b3, #dff0d8);

  filter: progid:dximagetransform.microsoft.gradient(startColorStr='#e3e3e3', EndColorStr='#ffffff');

  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#dff0d8',EndColorStr='#c1e2b3')";

}

.table-hover>tbody>tr:hover{background-color:#d9d9d9}

.table-bordered td,.table-bordered th{border:1px solid #ddd!important}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.btn-primary{
    color:#fff;
    background-color:#008000;
    border-color:#008000;
    padding:2px 10px;
    font-size:12px;
    margin:2px;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: left;
}

.mb-20 {
	margin-bottom: 5px;
}

.w-15 {
	width: 15% !important;
}

.w-30 {
	width: 30% !important;
}

.clearfix {
	clear: both !important;
}

.mb-0 {
	margin-bottom: 0;
}

.ml-35 {
	margin-left: 35px;
}

.text-success {
  color: green; 
}

.text-primary {
  color: #0275d8 !important;
}

.f-16 {
  font-size:16px;
}

.f-17 {
  font-size:17px;
}

.text-left {
  text-align: left !important; 
}

.comment-color {
  color: var(--jf-primary-color);
}

.name-color {
    color:black;
    font-family:verdana;
}

#print-button,#excel-button {
  padding: 4px 9px;
  white-space: nowrap;
  cursor: pointer;
  /* display: block; */
  font-size: 17px !important;
  background-color: var(--jf-primary-color) !important;
  color: var(--jf-white-hover) !important;
  margin-right: auto;
  float:left;
}

.text-center {
    text-align:center;
}

.blue-color {
    color:#0082FF;
    font-family:arail;
}

.f-52 {
    font-size: 52px;
}

.f-48 {
    font-size: 48px;
}

.f-26 {
    font-size: 26px;
}

.f-35 {
    font-size: 35px;
}

.dark-green {
    /* color: #045504; */
    color:green !important;
}

.bold {
    font-weight:bold;
}

.border-bottom {
    border-bottom:1px solid green;
}

.mr-0 {
    margin-right:0;
}

.mr-30 {
    margin-right: 4%;
}

.mr-88 {
    margin-right: 14%;
}

.black-color {
    color:black;
}

.header-background {
    background: rgb(0,130,255);
    background: linear-gradient(90deg, rgba(0,130,255,1) 0%, rgba(4,85,4,1) 35%, rgba(0,0,0,1) 100%);
}


.mrn-2 {
    margin-right:-2%;
}

#content {
    position: relative;
}

#content img {
    position: absolute;
    top: 0px;
    right: 0px;
}

.red-color {
    color:#d90000;
}

.border {
    border:1px solid #ccc;
}

.padding {
    padding:5px;
}

.white-background {
    background:white;
}

.mtn {
    margin-top:-14.5%;
}

.upload-file {
    cursor: pointer;
}

@media only screen and (min-width: 995px) {
  .header {
    display: none;
  }
}
